home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / teachaid / pccai / caiarc2.exe / TALK.BAT < prev    next >
DOS Batch File  |  1993-12-06  |  519b  |  21 lines

  1. rem example batch file to load SBTALKER & run a CAI program
  2. echo off
  3. if not exist sbtalker.exe goto oops
  4. if not exist remove.exe goto oops
  5. sbtalker /dblaster
  6. cai talkdemo
  7. remove
  8. goto end
  9. :oops
  10. cls
  11. echo SBTALKER NOT FOUND IN THIS DIRECTORY, COULD NOT LOAD SBTALKER...
  12. echo In order to run this program using SBTALKER, the following two
  13. echo files must be in this directory:
  14. echo  
  15. echo SBTALKER.EXE and REMOVE.EXE
  16. echo  
  17. echo The program will now run without SBTALKER support
  18. pause
  19. cai talkdemo
  20. :end
  21.